home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 001a / hslbatch.zip / HSLBATCH.BAT < prev    next >
DOS Batch File  |  1992-01-13  |  964b  |  27 lines

  1. REM Batch  UPLOADs using HS/LINK WITH QMODEM 
  2. REM use @shellx c:\qm5\hslbatch.bat for one of the QModem macro keys
  3. REM I use F6....     Modify this batch file appropriately for your system!
  4. REM This batch file changes to subdirectory QM becuase I have HSLINK there.
  5. REM You should change to where your HSLink program is so it can find the 
  6. REM HSLINK.CFG file.   Make sure all the other paths are correct for your
  7. REM set-up.                                Geoff McNamara   1/13/92
  8. REM Also make the changes needed for the port number (-Px where x=the com
  9. REM        port for your set up.   Also set the -E speed for your system.)
  10.  
  11. C:
  12. CD\qm
  13. IF EXIST c:\qm\QMODEM.BEW GOTO BEW_CONVERT
  14. GOTO DOWNLOAD_ONLY
  15.  
  16. :BEW_CONVERT
  17. c:\qm\bewconv c:\qm\qmodem.bew c:\temp\upload.lst
  18. HSLINK -E38400 -P2 -I2 @c:\temp\upload.lst
  19. GOTO END
  20.  
  21. :DOWNLOAD_ONLY
  22. HSLINK -E38400 -P2 -I2 
  23.  
  24. :END
  25. IF EXIST c:\temp\upload.lst DEL c:\temp\UPLOAD.LST
  26. IF ERRORLEVEL 1 PAUSE
  27.